-
Notifications
You must be signed in to change notification settings - Fork 762
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove DataType::Utf8 #1606
Remove DataType::Utf8 #1606
Conversation
Thanks for the contribution! Please review the labels and make any necessary changes. |
Hello @zhyass, 🎉 Thank you for opening the pull request! 🎉 |
Codecov Report
@@ Coverage Diff @@
## master #1606 +/- ##
=======================================
Coverage 72% 72%
=======================================
Files 578 574 -4
Lines 34010 33851 -159
=======================================
- Hits 24594 24570 -24
+ Misses 9416 9281 -135
Continue to review full report at Codecov.
|
query/src/sessions/settings.rs
Outdated
("flight_client_timeout", u64, 60, "Max duration the flight client request is allowed to take in seconds. By default, it is 60 seconds".to_string()), | ||
("min_distributed_rows", u64, 100000000, "Minimum distributed read rows. In cluster mode, when read rows exceeds this value, the local table converted to distributed query.".to_string()), | ||
("min_distributed_bytes", u64, 500 * 1024 * 1024, "Minimum distributed read bytes. In cluster mode, when read bytes exceeds this value, the local table converted to distributed query.".to_string()) | ||
("max_block_size", u64, 10000, "Maximum block size for reading".as_bytes().to_vec()), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just keep it as &str
.
we can modify inside the pub fn try_set_xx
functions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
Wait the pr jorgecarleitao/arrow2#346 complete |
No need to wait, we can review and merge in previous and update the commit in another pr. |
Sure, opened |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
CI Passed |
I hereby agree to the terms of the CLA available at: https://datafuse.rs/policies/cla/
Summary
DataType::Binary
to beDataType::String
,DataType::String
is the logic datatype ofDataType::LargeBinary
in arrow.DataType::String
Changelog
Related Issues
Fixes #1603